home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DDJ0992.ARJ / CORONER.H < prev    next >
Text File  |  1992-01-05  |  483b  |  17 lines

  1. //=================================
  2. // Coroner, by Matt Pietrek, 1992
  3. // File: CORONER.H
  4. //=================================
  5.  
  6. #define     MAX_PATH_LENGTH             144
  7.  
  8. #define     WM_CORONER_FILEOPEN_ERROR   WM_USER + 0x200
  9. #define     WM_CORONER_EXCEPTION        WM_USER + 0x201
  10.  
  11. // The .ASM InterruptRegister handler in TH_ASM.ASM
  12. void FAR PASCAL EXCEPTIONHANDLER(void);
  13.  
  14. // From XCPTREPT.C
  15. BOOL SetupInterruptHandler(void);
  16. void ShutdownInterruptHandler(void);
  17.